www.gusucode.com > VC++ 仿SQLServer企业管理器的SQL客户端工具-源码程序 > VC++ 仿SQLServer企业管理器的SQL客户端工具-源码程序/code/ListToolBar.cpp

    //Download by http://www.NewXing.com
// ListToolBar.cpp : implementation file
//

#include "stdafx.h"
#include "frontTool.h"
#include "ListToolBar.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CListToolBar

CListToolBar::CListToolBar()
{
}

CListToolBar::~CListToolBar()
{
}


BEGIN_MESSAGE_MAP(CListToolBar, CToolBar)
	//{{AFX_MSG_MAP(CListToolBar)
	ON_WM_CREATE()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CListToolBar message handlers

int CListToolBar::OnCreate(LPCREATESTRUCT lpCreateStruct) 
{
	if (CToolBar::OnCreate(lpCreateStruct) == -1)
		return -1;
	
	
	return 0;
}